/* ============================================
   FAQ – často kladené otázky
   ============================================ */
.pk-faq {
  --accent: #96243a;
  --bg-hover: #fcf5f6;
  --bd: #E6E8EC;
  --bd-hover: rgba(150, 36, 58, 0.25);
  --txt: #24242e;
  --txt-soft: #727a88;

  font-family: inherit;
  font-size: 15px;
  line-height: 1.55;
  text-align: left;

  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.pk-faq__item {
  background: #fff;
  border: 1px solid var(--bd);
  border-radius: 12px;
  overflow: hidden;
  transition: background-color 0.25s ease, border-color 0.25s ease;
  text-align: left;
}

.pk-faq__item:hover {
  border-color: var(--bd-hover);
}

.pk-faq__item[open] {
  background: var(--bg-hover);
  border-color: var(--bd-hover);
}

.pk-faq__question {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  color: var(--txt);
  text-align: left;
  transition: color 0.2s ease;
}

.pk-faq__question:hover {
  color: var(--accent);
}

.pk-faq__question::-webkit-details-marker {
  display: none;
}

.pk-faq__question::marker {
  content: "";
}

.pk-faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-hover);
  color: var(--accent);
  transition: transform 0.3s ease, background-color 0.2s ease;
  margin-left: auto;
}

.pk-faq__icon svg {
  width: 14px;
  height: 14px;
}

.pk-faq__item[open] .pk-faq__icon {
  transform: rotate(180deg);
  background: var(--accent);
  color: #fff;
}

.pk-faq__answer {
  padding: 14px 20px 18px;
  margin: 0;
  color: var(--txt-soft);
  font-family: inherit;
  line-height: 1.6;
  text-align: left;
  border-top: 1px solid var(--bd);
}


/* ============================================
   USP – výhody / proč my
   ============================================ */
.pk-usp {
  --pk: #96243a;
  --txt: #727a88;
  --bd: #E6E8EC;
  --bd-hover: #f0d9de;
  --bg-hover: #fcf5f6;

  font-family: inherit;
  font-size: 15px;
  line-height: 1.4;
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 16px;
  margin: 16px 0;
}

.pk-usp__item {
  background: #fff;
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 16px 14px;
  text-align: center;
  box-shadow: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  font-family: inherit;
  line-height: inherit;
  color: var(--txt);
}

.pk-usp__item:hover {
  background: var(--bg-hover);
  border-color: var(--bd-hover);
}

.pk-usp__icon {
  width: auto;
  height: auto;
  margin: 0 auto 10px;
  border: 0;
  border-radius: 0;
  color: var(--pk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
}

.pk-usp__icon svg {
  width: 28px;
  height: 28px;
}

.pk-usp__text {
  margin: 0;
  padding: 0;
  font-family: inherit;
  line-height: inherit;
  color: inherit;
}

.pk-usp__text strong,
.pk-usp__text b {
  font-weight: 700;
  color: #24242e;
}

@media (max-width: 900px) {
  .pk-usp {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }
}

@media (max-width: 520px) {
  .pk-usp {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   Reviews – reference / hodnocení
   ============================================ */
.pk-reviews {
  --bg: #fcf5f6;
  --bg-hover: #f5e6e9;
  --txt: #24242e;
  --txt-soft: #727a88;
  --accent: #96243a;

  font-family: inherit;
  font-size: 15px;
  line-height: 1.55;
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.pk-reviews__item {
  position: relative;
  background: var(--bg);
  border: 1px solid rgba(150, 36, 58, 0.12);
  border-radius: 14px;
  padding: 36px 26px 24px;
  color: var(--txt);
  font-family: inherit;
  line-height: inherit;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.pk-reviews__item:hover {
  background: var(--bg-hover);
  border-color: rgba(150, 36, 58, 0.25);
  transform: translateY(-2px);
}

.pk-reviews__quote-mark {
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.35;
  pointer-events: none;
  user-select: none;
}

.pk-reviews__stars {
  position: absolute;
  top: 18px;
  right: 22px;
  display: flex;
  gap: 2px;
  color: #e0a93b;
  font-size: 16px;
  line-height: 1;
}

.pk-reviews__text {
  margin: 18px 0 14px;
  padding: 0;
  font-family: inherit;
  font-style: italic;
  color: inherit;
}

.pk-reviews__author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(114, 122, 136, 0.25);
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  color: var(--txt-soft);
}

.pk-reviews__author::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--txt-soft);
}

@media (max-width: 900px) {
  .pk-reviews {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 640px) {
  .pk-reviews {
    grid-template-columns: 1fr;
  }
}
